home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Miscellany / Swap.h < prev   
Text File  |  2000-06-23  |  165b  |  15 lines

  1. // Swap.h
  2.  
  3. #ifndef Swap_h
  4. #define Swap_h
  5.  
  6. template <class Type>
  7. void Swap( Type& left, Type& right )
  8.   {
  9.     Type out( left );
  10.     left = right;
  11.     right = out;
  12.   }
  13.  
  14. #endif
  15.